2005-05-25 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Draw the
+ background of rows insensitive when the treeview is insensitive.
+ (pointed out by Billy Biggs)
+
* demos/gtk-demo/clipboard.c: Demonstrate image copy-and-paste
and DND, and clipboard persistency.
2005-05-25 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Draw the
+ background of rows insensitive when the treeview is insensitive.
+ (pointed out by Billy Biggs)
+
* demos/gtk-demo/clipboard.c: Demonstrate image copy-and-paste
and DND, and clipboard persistency.
2005-05-25 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Draw the
+ background of rows insensitive when the treeview is insensitive.
+ (pointed out by Billy Biggs)
+
* demos/gtk-demo/clipboard.c: Demonstrate image copy-and-paste
and DND, and clipboard persistency.
g_assert (detail);
- if (flags & GTK_CELL_RENDERER_SELECTED)
+ if (widget->state == GTK_STATE_INSENSITIVE)
+ state = GTK_STATE_INSENSITIVE;
+ else if (flags & GTK_CELL_RENDERER_SELECTED)
state = GTK_STATE_SELECTED;
else
state = GTK_STATE_NORMAL;